Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@universal-packages/event-emitter

Package Overview
Dependencies
Maintainers
0
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@universal-packages/event-emitter

Event emitter 2 with universal convention

  • 1.1.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
12K
decreased by-14.13%
Maintainers
0
Weekly downloads
 
Created
Source

Buffer Dispatcher

npm version Testing codecov

It extends EventEmitter2

Install

npm install @universal-packages/event-emitter

EventEmitter

It behaves exactly as EventEmitter2 but with wildcards enabled by default and following events convention for universal-packages.

import { EventEmitter } from '@universal-packages/event-emitter'
import { startMEasurement } from '@universal-packages/time-measurer'

const measurer = startMeasurement()

const emitter = new EventEmitter()

emitter.on('event', (event) => {
  console.log(event)
})

emitter.emit('event', { message: 'Hello World', measurement: measurer.finish(), payload: { foo: 'bar'} })
emitter.emit('error', { error: new Error('Something went wrong'), measurement: measurer.finish(), payload: { foo: 'bar'} })

Typescript

This library is developed in TypeScript and shipped fully typed.

Contributing

The development of this library happens in the open on GitHub, and we are grateful to the community for contributing bugfixes and improvements. Read below to learn how you can take part in improving this library.

License

MIT licensed.

FAQs

Package last updated on 25 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc